home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Misc Servers / Zope.exe / CATALOGINDEXES.DTML < prev    next >
Encoding:
Text File  |  2000-07-19  |  1.8 KB  |  56 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
  2. <HTML lang="en">
  3. <HEAD>
  4. <TITLE>View Catalog Records</TITLE>
  5. </HEAD>
  6. <BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555">
  7. <dtml-var manage_tabs>
  8.  
  9. <p> This list defines what indexes the Catalog will contain.  When
  10. objects get cataloged, the values of any attributes they may have
  11. which match an index in this list will get indexed.  Indexes come in
  12. three flavors, Text Indexes, Field Indexes and Keyword Indexes.</p>
  13.  
  14. <p><b>Text Indexes</b> break text up into individual words, and are
  15. often refered to as <b>full-text indexes</b>.  Text indexes sort results by
  16. <b>score</b> meaning they return 'hits' in order from the most
  17. relevant to the lest relevant.</p>
  18.  
  19. <p><b>Field Indexes</b> treat the value of an objects attribute atomically,
  20. and can be used, for example, to track only a certain subset of object
  21. values, such as 'meta_type'.</p>
  22.  
  23. <p><b>Keyword Indexes</b> index a sequence of objects that act as
  24. 'keywords' for an object.  A Keyword Index will return any objects
  25. that have one or more keywords specified in a search query.</p>
  26.  
  27.  
  28. <form action="<dtml-var URL1>">
  29.  
  30. <ul>
  31. <dtml-in index_objects sort=id>
  32.  <li>
  33.   <input type="checkbox" name="names:list" value="<dtml-var id html_quote>">
  34. <dtml-var id>    (<i><dtml-var meta_type></i>)</li>
  35. </dtml-in>
  36. </ul>
  37. <br>
  38. <input name="manage_delIndexes:method" type=submit value=" Delete "><br>
  39. Add Index: <input name="name"> <br>
  40.  
  41. of Index Type: <select name="type">
  42.          <option value="TextIndex">TextIndex</option>
  43.          <option value="FieldIndex">FieldIndex</option>
  44.      <option value="KeywordIndex">KeywordIndex</option>
  45.          </select>
  46. <input name="manage_addIndex:method" type=submit value=" Add ">
  47. </form>
  48.  
  49. </BODY></HTML>
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.